home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000286_news@columbia.edu _Fri Aug 30 12:52:14 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id MAA16964 for <kermit.misc@watsun.cc.columbia.edu>; Fri, 30 Aug 1996 12:52:14 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id MAA17387 for kermit.misc@watsun; Fri, 30 Aug 1996 12:52:13 -0400 (EDT)
  4. Path: news.columbia.edu!sol.ctr.columbia.edu!news.msfc.nasa.gov!news.sgi.com!enews.sgi.com!news.mathworks.com!nntp.primenet.com!news.asu.edu!ennfs.eas.asu.edu!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  5. From: jrd@cc.usu.edu (Joe Doupnik)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: MSK3.14, Windows, and 3COM ethernet
  8. Message-ID: <1996Aug30.094351.84361@cc.usu.edu>
  9. Date: 30 Aug 96 09:43:51 MDT
  10. References: <505ku0$sn3@mirage.skypoint.com>
  11. Organization: Utah State University
  12. Lines: 38
  13.  
  14. In article <505ku0$sn3@mirage.skypoint.com>, escargo@skypoint.com (David S Cargo) writes:
  15. > After not being able to achieve stable operation with the packet driver
  16. > and Kermit with DOS, I switched to using the ODI drivers with DOS,
  17. > which has worked reliably.  I decided to try running with windows using
  18. > the following setup.  The first two lines I run from the batch file;
  19. > I need them to use Kermit from DOS.  The next two lines I typed by hand.
  20. > They seemed to work, but when I connected to the router at the other end
  21. > of my ethernet cable, it had not received any ethernet packets.  It's
  22. > working under DOS (which is how this message is getting sent).
  23. > Any suggestions on how the find and fix the problem are welcome.
  24. > David S. Cargo (escargo@skypoint.com)
  25. > @echo off
  26. > REM  Netware startup
  27. > if not exist C:\NWCLIENT\lsl.com goto noNetware
  28. > if not exist C:\NWCLIENT\ipxodi.com goto noNetware
  29. > rem if not exist C:\NWCLIENT\vlm.exe goto noNetware
  30. > C:\NWCLIENT\lsl.com
  31. > C:\NWCLIENT\3C5X9.com
  32. > rem C:\NWCLIENT\ODIPKT 0 96
  33. > rem C:\NWCLIENT\WINPKT 0x60
  34. > rem C:\NWCLIENT\ipxodi.com
  35. > rem C:\NWCLIENT\vlm.exe
  36. > rem f:\login
  37. > rem c:
  38. > rem goto doneNetware
  39. > :noNetware
  40. > rem echo Netware client software missing, Netware not started
  41. > :doneNetware
  42. ------------
  43.     I'm a little confused. The above works fine at DOS level, I infer,
  44. but if you then start Windows (version??) it does not, correct? If so then
  45. the obvious suggestion is to look for conflicts over the hardware, particularly
  46. the IRQ (probably overlaps a serial or parallel port). Don't forget about
  47. Plug&Play upsetting the 3Com board.
  48.     Joe D.